ini_read_real


描述

你可以使用此函数从 ini 数据文件中读取数字。Ini 文件由 节(sections) 组成,然后每个节由 - 对(key - value pairs)组成。所以典型的 ini 文件看起来像这样:


语法:

ini_read_real(section, key, default);


参数 描述
section 要读取值的键所在的 .ini 节。
key 要读取值的键。
default 如果在定义的位置找不到值(或 .ini 文件不存在),则返回的默认值。必须是实数。


返回:

Real(实数)


例如:

ini_open("savedata.ini");
score = ini_read_real("save1", "score", 0 );
ini_close();

This will open "savedata.ini" and set score to the value under "save1" > "score" in it, then close the .ini again. Should there be no value under "save1" > "score", or there no "savedata.ini" file present, score will be set to 0.